/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0d0d0d;
  --bg-darker: #000000;
  --gold: #f5c542;
  --gold-dark: #d4a017;
  --red: #c0392b;
  --blue: #1a3c6e;
  --white: #f5f5f5;
  --gray-text: #cccccc;
}

body {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 56px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ===== LOGO FIXO (MARCA D'ÁGUA) ===== */
.brand-logo {
  position: fixed;
  top: 14px;
  left: 14px;
  width: 120px;
  z-index: 500;
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.footer-logo {
  width: 150px;
  margin: 0 auto 20px;
  opacity: 0.9;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background-color: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 15px;
  letter-spacing: 0.5px;
}

.urgency-tag {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.urgency-highlight {
  color: #1a1500;
  background-color: var(--gold);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.85em;
  letter-spacing: 2.5px;
  text-shadow: none;
  box-shadow: 0 0 10px rgba(245, 197, 66, 0.7);
}

.urgency-main {
  font-weight: 800;
  font-size: 0.8rem;
  margin-top: 2px;
}

.urgency-sub {
  font-weight: 700;
  font-size: 0.65rem;
  margin-top: 2px;
}

/* ===== FAIXA FIXA DE COMPRA ===== */
.sticky-buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: var(--bg-darker);
  color: var(--white);
  padding: 8px 15px;
  border-top: 1px solid rgba(245, 197, 66, 0.4);
}

.sticky-buy-info {
  text-align: left;
}

.sticky-buy-title {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.sticky-buy-timer {
  font-size: 0.65rem;
  color: var(--gray-text);
}

.sticky-buy-timer span {
  color: var(--gold);
  font-weight: 700;
}

.sticky-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 50px;
  background: linear-gradient(180deg, #f7d97a, var(--gold-dark));
  color: #1a1500;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter 0.2s ease;
}

.sticky-buy-btn:hover {
  filter: brightness(1.08);
}

.sticky-buy-btn .arrow {
  font-size: 1.1rem;
}

/* ===== HERO ===== */
.hero {
  background-color: var(--bg-darker);
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0.92) 50%, #000000 65%, #000000 100%),
    url('../assets/img/FUNDO - BLOCO PRINCIPAL.jpg');
  background-size: cover, cover;
  background-position: top center, center;
  background-repeat: no-repeat, no-repeat;
  padding: 6px 0 40px;
  text-align: center;
}

.hero-speakers {
  display: flex;
  justify-content: center;
  margin-bottom: -125px;
}

.hero-speakers-img {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 80%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 80%);
}

.hero-brand-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0px;
}

.hero-brand-name {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
  white-space: nowrap;
}

.hero-brand-logo {
  width: 200px;
  height: auto;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 15px;
  padding-top: 0px;
}

.hero-title .highlight {
  display: block;
  font-weight: 900;
  color: var(--gold);
  font-size: clamp(2.6rem, 13vw, 4.6rem);
  line-height: 1.1;
  margin: 8px 0;
  white-space: nowrap;
  text-shadow: 0 0 24px rgba(245, 197, 66, 0.55);
  animation: glow-pulse 2.2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 0 0 24px rgba(245, 197, 66, 0.55);
  }
  50% {
    text-shadow: 0 0 40px rgba(245, 197, 66, 0.95), 0 0 60px rgba(245, 197, 66, 0.4);
  }
}

.shine-text {
  display: inline-block;
  background: linear-gradient(
    100deg,
    #ffffff 30%,
    #f5c542 45%,
    #fff6d8 50%,
    #f5c542 55%,
    #ffffff 70%
  );
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shine-sweep 4s ease-in-out infinite;
}

@keyframes shine-sweep {
  0% { background-position: 160% 0; }
  60%, 100% { background-position: -60% 0; }
}

.hero-date {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  padding: 8px 20px;
  background-color: rgba(245, 197, 66, 0.06);
  margin-bottom: 18px;
}

.hero-subtitle,
.hero-text {
  color: #e8e8e8;
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto 14px;
}

.scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: linear-gradient(to bottom, #ffe27a 0%, #f5c542 45%, #d4a017 100%);
  color: #1a1204;
  font-weight: 800;
  font-size: 1rem;
  padding: 18px 35px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.35);
  animation: scroll-hint-glow 1.8s ease-in-out infinite;
}

@keyframes scroll-hint-glow {
  0%, 100% { box-shadow: 0 6px 18px rgba(212, 160, 23, 0.35); }
  50% { box-shadow: 0 6px 30px rgba(245, 197, 66, 0.7); }
}

.scroll-hint-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.scroll-hint-arrows span {
  width: 12px;
  height: 12px;
  border-right: 3px solid #1a1204;
  border-bottom: 3px solid #1a1204;
  transform: rotate(45deg);
  animation: scroll-hint-bounce 1.6s ease-in-out infinite;
}

.scroll-hint-arrows span:nth-child(2) {
  animation-delay: 0.2s;
  margin-top: -8px;
}

@keyframes scroll-hint-bounce {
  0%, 100% { opacity: 0.35; transform: rotate(45deg) translate(0, 0); }
  50% { opacity: 1; transform: rotate(45deg) translate(3px, 3px); }
}

/* Barra de progresso de ingressos vendidos */
.sales-progress {
  max-width: 500px;
  margin: 30px auto 0;
}

.sales-progress-bar {
  background-color: #1a0000;
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  padding: 4px;
  height: 34px;
  overflow: hidden;
}

.sales-progress-fill {
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(to right, #8a0000, #e60000);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  transition: width 1s ease;
}

.sales-progress-percent {
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
}

.sales-progress-label {
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 12px;
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.3;
}

.section-title br {
  display: block;
}

/* ===== AGENDA ===== */
.agenda {
  padding: 50px 0;
  background-color: var(--bg-dark);
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  counter-reset: agenda;
}

.agenda-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  background: linear-gradient(145deg, #161616, #0e0e0e);
  border: 1px solid rgba(245, 197, 66, 0.15);
  border-radius: 10px;
  padding: 22px 26px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.agenda-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}

.agenda-item:hover {
  transform: translateX(6px);
  border-color: rgba(245, 197, 66, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.agenda-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(245, 197, 66, 0.08);
  border: 1px solid rgba(245, 197, 66, 0.35);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
}

.agenda-item p {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.agenda-item p strong,
.agenda-item p b {
  color: #fff;
}

/* Efeito de queda para os cards da agenda */
.agenda-item-fall[data-animate] {
  opacity: 0;
  transform: translateY(-140px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.agenda-item-fall[data-animate].in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== BONUS ===== */
.bonus {
  padding: 50px 0;
  background-color: var(--bg-darker);
}

.bonus-subtitle {
  text-align: center;
  color: var(--gray-text);
  font-size: 1rem;
  margin-bottom: 30px;
}

.bonus-subtitle strong {
  color: var(--gold);
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.bonus-item {
  position: relative;
  background: linear-gradient(160deg, #1a1a1a, #101010);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 30px 20px 25px;
  text-align: center;
  max-width: 260px;
  flex: 1 1 260px;
  box-shadow: 0 0 0 rgba(245, 197, 66, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bonus-item:hover {
  transform: translateY(-6px);
  border-color: #ffe27a;
  box-shadow: 0 10px 30px rgba(245, 197, 66, 0.25);
}

.bonus-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffe27a, var(--gold-dark));
  color: #1a1204;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.bonus-icon {
  width: 50px;
  height: 50px;
  margin: 10px auto 15px;
  filter: drop-shadow(0 0 10px rgba(245, 197, 66, 0.5));
}

.bonus-value {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
  text-shadow: 0 0 14px rgba(245, 197, 66, 0.35);
}

.bonus-desc {
  color: var(--gray-text);
  font-size: 0.88rem;
}

/* ===== ABOUT / VIDEO ===== */
.about {
  padding: 50px 0;
  background-color: var(--bg-dark);
  text-align: center;
}

.about-text {
  color: var(--white);
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.about-subtitle {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 600px;
  margin: 30px auto 25px;
  line-height: 1.4;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto 30px;
}

.phone-mockup .phone-img {
  max-width: 220px;
  border-radius: 10px;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phone-mockup .phone-img:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(245, 197, 66, 0.25);
}

/* ===== MODAL DE IMAGEM (LIGHTBOX) ===== */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.open {
  opacity: 1;
  visibility: visible;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}

.image-modal-content {
  position: relative;
  width: 92%;
  max-width: 420px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.image-modal.open .image-modal-content {
  transform: scale(1);
}

.image-modal-content img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(245, 197, 66, 0.35);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 197, 66, 0.08);
}

.image-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 197, 66, 0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.image-modal-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.about-caption {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Thumbnail que abre o modal */
.video-thumb {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 4px;
  cursor: pointer;
  background: conic-gradient(from 0deg, var(--gold), transparent 30%, transparent 70%, var(--gold));
  animation: video-thumb-spin 4s linear infinite;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumb:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 55px rgba(245, 197, 66, 0.35);
}

@keyframes video-thumb-spin {
  to { background: conic-gradient(from 360deg, var(--gold), transparent 30%, transparent 70%, var(--gold)); }
}

.video-thumb-inner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.video-thumb-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(245, 197, 66, 0.5);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}

.video-thumb-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: video-thumb-dot 1.4s ease-in-out infinite;
}

@keyframes video-thumb-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.video-thumb-img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  background-color: #111;
  pointer-events: none;
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.play-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 255, 255, 0.35);
  animation: pulse 2.4s infinite;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
}

.video-thumb:hover .play-button {
  transform: scale(1.08);
  background-color: var(--gold);
  border-color: var(--gold);
  color: #1a1a1a;
}

@keyframes pulse {
  0% { box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 255, 255, 0.3); }
  70% { box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 0 16px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ===== MODAL DE VÍDEO ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.video-modal-content {
  position: relative;
  width: 92%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
  border: 1px solid rgba(245, 197, 66, 0.35);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 197, 66, 0.08);
}

.video-modal.open .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 197, 66, 0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.video-modal-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.depoimento-video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  background-color: #111;
}

/* ===== SPEAKERS ===== */
.speakers {
  padding: 20px 0;
  background-color: #000;
  text-align: center;
}

.speakers-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.speakers-row-2 {
  grid-template-columns: repeat(2, 1fr);
}

.speakers-row-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 25px;
}

.speaker-card {
  background-color: #161616;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}

.speakers-row-3 .speaker-card {
  padding: 14px 10px;
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(245, 197, 66, 0.2);
  border-color: var(--gold);
}

.speaker-card:hover .speaker-img {
  transform: scale(1.06);
}

.speaker-img {
  transition: transform 0.3s ease;
}

.speaker-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto 15px;
  background: #333;
}

.speaker-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.speaker-card p {
  font-size: 0.85rem;
  color: var(--gray-text);
}

.speakers-note {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
}

.typing-cursor {
  color: var(--gold);
  font-style: normal;
  animation: cursor-blink 0.8s steps(1) infinite;
}

@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* ===== TICKETS ===== */
.tickets {
  padding: 50px 0;
  background-color: var(--bg-dark);
  text-align: center;
}

.tickets-subtitle {
  color: var(--gray-text);
  max-width: 650px;
  margin: 0 auto 35px;
  font-size: 0.95rem;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 780px;
  margin: 0 auto;
}

.ticket-card {
  position: relative;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ticket-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.9s ease;
  pointer-events: none;
}

.ticket-card:hover::before {
  left: 130%;
}

.ticket-card:hover {
  transform: translateY(-10px);
}

.ticket-diamond {
  background-color: var(--blue);
  border: 2px solid #2f5fa8;
}

.ticket-diamond:hover {
  box-shadow: 0 16px 40px rgba(47, 95, 168, 0.45);
  border-color: #8fc0ff;
}

.ticket-gold {
  background-color: #2b2205;
  border: 2px solid var(--gold);
}

.ticket-gold:hover {
  box-shadow: 0 16px 40px rgba(245, 197, 66, 0.4);
  border-color: #ffe08a;
}

.ticket-name {
  text-align: center;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ticket-diamond .ticket-name span {
  color: #8fc0ff;
  font-size: 1.6rem;
  font-weight: 800;
}

.ticket-gold .ticket-name span {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 800;
}

.ticket-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.ticket-benefits li {
  font-size: 0.82rem;
  color: var(--gray-text);
  padding-left: 20px;
  position: relative;
}

.ticket-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.ticket-benefits-intro {
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 12px;
}

.ticket-benefits-detailed li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ticket-benefits-detailed li strong {
  color: var(--white);
  font-size: 0.85rem;
}

.ticket-benefits-detailed li span {
  color: var(--gray-text);
  font-size: 0.78rem;
}

.ticket-old-price {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.85rem;
}

.ticket-price-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-top: 5px;
}

.ticket-price {
  text-align: center;
  font-size: 1rem;
  margin: 5px 0;
}

.ticket-price strong {
  font-size: 2rem;
  color: var(--gold);
}

.ticket-cash {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.ticket-button {
  display: block;
  text-align: center;
  background-color: #2ecc71;
  color: #06210f;
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 6px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.ticket-button:hover {
  background-color: #27ae60;
  transform: translateY(-2px);
}

.tickets-disclaimer {
  color: #777;
  font-size: 0.75rem;
  margin-top: 25px;
}

.attention-box {
  max-width: 700px;
  margin: 30px auto 0;
  border: 1px solid var(--red);
  background-color: rgba(192, 57, 43, 0.08);
  border-radius: 6px;
  padding: 15px 20px;
  text-align: center;
}

.attention-box p {
  color: var(--gray-text);
  font-size: 0.8rem;
  line-height: 1.5;
}

.attention-box strong {
  color: var(--red);
}

/* ===== SUPPORT ===== */
.support {
  background-color: #d9d9d9;
  text-align: center;
  padding: 35px 0;
}

.support-question {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.support-cta {
  color: #111;
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: 4px;
  margin-bottom: 18px;
}

.support-button {
  display: inline-block;
  background-color: #111;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: opacity 0.2s ease;
}

.support-button:hover {
  opacity: 0.85;
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background-color: #050505;
  padding: 25px 0 40px;
}

.site-footer p {
  color: #666;
  font-size: 0.7rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .brand-logo {
    width: 80px;
    top: 8px;
    left: 8px;
  }

  .hero-speakers {
    margin-bottom: -95px;
  }

  .hero-speakers-img {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 88%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 88%);
  }

  .hero-brand-row {
    gap: 6px;
    margin-bottom: 14px;
  }

  .hero-brand-name {
    font-size: 1.4rem;
  }

  .hero-brand-logo {
    width: 74px;
  }

  .sticky-buy-bar {
    padding: 6px 10px;
    gap: 8px;
  }

  .sticky-buy-title {
    font-size: 0.62rem;
  }

  .sticky-buy-timer {
    font-size: 0.58rem;
  }

  .sticky-buy-btn {
    padding: 7px 10px;
    font-size: 0.58rem;
    white-space: normal;
    text-align: center;
  }
}

@media (min-width: 730px) {
  .hero-speakers {
    margin-bottom: -150px;
  }

  .hero-speakers-img {
    -webkit-mask-image: linear-gradient(to bottom, black 68%, transparent 88%);
    mask-image: linear-gradient(to bottom, black 68%, transparent 88%);
  }

  .hero-brand-row {
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-title .highlight {
    font-size: clamp(4rem, 7vw, 7rem);
  }

  .section-title {
    font-size: 2rem;
  }
}
